Trait isotope_parser::utils::IntFromStr[][src]

pub trait IntFromStr: Sized {
    fn parse_radix(src: &str, radix: u32) -> Result<Self, ()>;
}
Expand description

An integer type which can be parsed from a string

Required methods

Parse a type from a string given a radix

Implementations on Foreign Types

Implementors